home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / writev.c,v < prev   
Text File  |  1991-12-10  |  3KB  |  129 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     90.08.20.17.18.43;  author kupfer;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.32.14;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.10.16.44.55;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Don't return error status if write partially succeeded.
  32. @
  33. text
  34. @/* 
  35.  * writev.c --
  36.  *
  37.  *    Procedure to map from Unix writev system call to Sprite.
  38.  *
  39.  * Copyright 1986 Regents of the University of California
  40.  * All rights reserved.
  41.  */
  42.  
  43. #ifndef lint
  44. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/writev.c,v 1.1 88/06/19 14:32:14 ouster Exp Locker: kupfer $ SPRITE (Berkeley)";
  45. #endif not lint
  46.  
  47. #include "sprite.h"
  48. #include "fs.h"
  49. #include "compatInt.h"
  50. #include <sys/types.h>
  51. #include <sys/uio.h>
  52.  
  53.  
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * writev --
  59.  *
  60.  *    Procedure to map from Unix writev system call to Sprite Fs_Write.
  61.  *
  62.  * Results:
  63.  *    UNIX_ERROR is returned upon error, with the actual error code
  64.  *    stored in errno.  Upon success, the number of bytes actually
  65.  *    written is returned.
  66.  *
  67.  * Side effects:
  68.  *    The data in the buffers is written to the file at the indicated offset.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. int
  74. writev(descriptor, iov, ioveclen)
  75.     int descriptor;        /* descriptor for stream to write */
  76.     register struct iovec *iov;    /* array of io vectors. */
  77.     int ioveclen;        /* number of iovec's in iov. */
  78. {
  79.     ReturnStatus status;    /* result returned by Fs_Write */
  80.     int amountWritten;        /* place to hold number of bytes written */
  81.     int totalWritten = 0;    /* place to hold total # of bytes written */
  82.     int i;
  83.  
  84.     for (i=0; i < ioveclen; i++, iov++) {
  85.     status = Fs_Write(descriptor, iov->iov_len, iov->iov_base, 
  86.                             &amountWritten);
  87.     if (status != SUCCESS) {
  88.         break;
  89.     } else {
  90.         totalWritten += amountWritten;
  91.     }
  92.     }
  93.     if (status != SUCCESS && totalWritten == 0) {
  94.     errno = Compat_MapCode(status);
  95.     return(UNIX_ERROR);
  96.     } else {
  97.     return(totalWritten);
  98.     }
  99. }
  100. @
  101.  
  102.  
  103. 1.2.1.1
  104. log
  105. @Initial branch for Sprite server.
  106. @
  107. text
  108. @d11 1
  109. a11 1
  110. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/writev.c,v 1.2 90/08/20 17:18:43 kupfer Exp $ SPRITE (Berkeley)";
  111. @
  112.  
  113.  
  114. 1.1
  115. log
  116. @Initial revision
  117. @
  118. text
  119. @d11 1
  120. a11 1
  121. static char rcsid[] = "$Header: writev.c,v 1.1 87/06/18 18:41:21 andrew Exp $ SPRITE (Berkeley)";
  122. d35 1
  123. a35 1
  124.  *    The data in the buffer is written to the file at the indicated offset.
  125. d60 1
  126. a60 1
  127.     if (status != SUCCESS) {
  128. @
  129.